home *** CD-ROM | disk | FTP | other *** search
Text File | 1986-11-07 | 11.0 KB | 268 lines | [TEXT/ttxt] |
-
-
- Hello,
-
- thanks for your interest in the MEdit source files. You find them on this
- disk. If you should find any bugs, inefficiencies or if you have added a
- new feature to MEdit you would like make available to other users, send
- it to me on a disk. You will get the disk back with the latest version
- of MEdit (including source files). Please do not release new versions of
- MEdit yourself because this could lead to an uncontrollable number of
- different versions.
-
- Note that you may not copy the source code, in whole or part, for
- distribution. However you may make backup copies or write new programs
- or versions of MEdit based on this source.
-
- The binary code of MEdit may be given away freely, but it may not be sold.
- Please always include the files 'Macros.mcr', 'Macros', 'MComp' and
- 'MEdit.doc'.
-
- The version of MEdit you get on this Disk is 1.4D20. This is still a pre-
- release even if I feel quite comfortable with it. The updated documentation
- uses 124 kByte of disk space. It couldn't be included for this reason. But
- the following list of changes / additions should help you to take
- advantage of all the new capabilities:
-
- - There is now a compiler which has to be used to be able to run a macro
- file under MEdit. The new concept has several advantages:
-
- • compiled macros are more compact -> less disk space used
- • compiled macros can be loaded much faster -> faster MEdit startup
- • the new editor without parser is 3 kByte smaller -> new features
- • the new editor needs less data space
- • the compiler allows better syntax checking and error messages
- • compiled macros run faster -> faster execution of macros
-
- Switching forth and back between the editor and the compiler is quite
- fast, so macro development isn't really more complicated than before.
- Use of the MComp (the macro compiler) is straight forward: Start it,
- choose 'Compile' from the 'File' menu, choose the macro text file
- (which has to have a name ending in '.mcr'). As long as the spinning
- wheel is turning, the compiler is working. The output file will have
- the same name as the input file but without '.mcr'. The compiled file
- is now ready to be used with MEdit.
-
- - MEdit can now handle files of any length. It does so by means of
- sections. In the Open dialog box you may set the section size (press
- the set size button). If you read a file from disk it will be splitted
- into sections of this size (there is an automatic adjustment to prevent
- lines or words from being broken across sections). Above and below the
- scroll bar there are two buttons which allow you to switch between the
- sections. The number of the current section is displayed in the upper
- button. The lower button is normally empty but if you are working in
- the last section it will display the letter "N" which stands for New.
- So if you press this button in this case a new section will be added
- at the end of the file. To make section switching easy, there are two
- new macro commands (see below) which allow you to implement whatever
- is convenient for you.
-
- - There are three new macro commands and four new functions:
-
- • WINDOW(<num-expr>); changes the active window during macro execution.
- This allows for example to hold the glossary data ("Glossary macro
- in Demo.mcr") in it's own window / file. An other example would be
- a "global search", which searches for all occurences of a string in
- all open windows. Or a macro which searches for the PROCEDURE defini-
- tion in all open library files,...
- Windows are numbered from 0 to n, from front to back.
-
- • APPEND; Appends a new empty section at the end of a file and makes
- it the current section. This may be useful if you need a temporary
- buffer to hold some data while a macro is running. To avoid that this
- data will be written back to disk together with the "real" data, just
- delete the temporary data with select(0,0 | L$,C$); clear;.
-
- • SECT(<num-expr>); changes the current section. See "Jump to Section"
- macro in Macros.mcr.
- Sections are numbered from 0 to n.
-
- • STRCMP(<str-val1>, <str-val2>, <num-expr>); This new function which
- replaces the boolean function STREQU compares the two string values
- and returns -1, 0, 1 depending on the result. If <str-val1> is smaller
- than <str-val2> the return value is -1, if it's equal it is 0, and
- if it's greater it is 1. So to write the equivalent of
-
- IF STREQU($1, $2, 0) { ....
-
- you will have to write
-
- IF STRCMP($1, $2, 0) = 0 { ...
-
- The <num-expr> parameter tells whether or not to distinguish between
- upper and lower case characters.
-
- • LEN(<str-val>); returns the length of the string specified.
-
- • CONCAT(<str-val> {,<str-val>}); concatenates all specified strings.
-
- • SUBSTR(<str-val>, <num-expr1>, <num-expr2); extracts the substring
- starting at <num-expr1> and with length <num-expr2> from <str-val>.
- If <num-expr2> is negative, characters to the left are extacted.
-
- - There are two new meta values for sections:
-
- S. -> number of the current section
- S$ -> number of the last section
-
- - The macro commands FIND, WINDOW and SECT can be used as boolean
- functions now:
-
- WINDOW will switch the active window. If it finds the specified window
- it will return TRUE otherwise it returns FALSE. (see "Window test"
- macro in Demo.mcr).
-
- SECT will switch the active section. If it finds the specified section
- it will return TRUE otherwise it returns FALSE.
-
- FIND searches for a given string from the current cursor position.
- If it finds the string it selects it and returns TRUE. Otherwise
- it doesn't change the current position (note that this has changed from
- earlier versions of MEdit, which set the position to start of window
- if the string wasn't found) and returns FALSE. (see "Replace tabs"
- macro in Macros.mcr).
-
- If WINDOWS or SECT are not used as boolean functions (i.e. just as a
- freestanding command like 'WINDOW(0);') they don't return anything but
- if the switching failed an appropriate dialog box will be displayed
- and the macro execution stops. If FIND is used outside a boolean
- expression and does not find the given string, it does nothing.
-
- - The macro syntax has been somewhat simplified: where ever you had to
- write a command list enclosed by { and } you may now write just a
- command. This is now consistent with most higher level languages.
- Example:
-
- IF #0 < 3 {
- FIND("xyz");
- } ELSE {
- SELECT(0,0);
- };
-
- can now be written as
-
- IF #0 < 3
- FIND("xyz")
- ELSE
- SELECT(0,0);
-
- Of course you will still have to use a command list if you want to
- execute more than one command after IF, ELSE or WHILE. The commands
- of a whole macro still have to be surrounded by { and }.
-
- - Anyone of the macros of a macro file can now be made autoexecuted when
- the file is being loaded. Syntax: preceed the autostart macro by '!'.
- If you use commands which have to run on a text window you will have
- to make shure that such a window exists. If you autoexecute a macro
- which uses text commands and the current window is not a text window,
- MEdit will bomb immediately.
-
- * go to end of active window, whenever this macro is loaded
- * and the front window is a text window
-
- ! "Bottom" {
- IF WINDOW(0)
- Select($,$)!;
- };
-
-
- - It is now possible to "index" variables: #(3+5) for example means the
- numeric variable #8. $(#3) selects one of the string variables depending
- on the content of #3.
-
- "Var test" {
- Set(#0, 3);
- Set(#3, -999);
- Prompt("Is it -999 ?", #(#0));
- };
-
- - The Transfer menu is now auto-configuring, i.e. it will remember the
- last five applications which have been called. This way it's possible
- to call them directly (without SFGetFile). Only applications in the
- same directory as MEdit can be called this way.
-
- - A bug which occured sometimes with double-strike characters has been
- fixed
-
- - If you tried to 'Quit' or 'Transfer' and had open windows which had to
- be saved, but a disk error occured (e.g. 'Disk Locked') the windows were
- closed anyway. The result of this situation was sometimes lost data. This
- problem is fixed now. The window is kept open after an error to give you
- one more chance to save it correctly.
-
- - Auto indent is now toggled with the shift key (instead of just being
- switched off as before).
-
- - Pressing the space bar while a macro is running slows execution down
- for debugging.
-
- - While running a macro the cursor will now change to a spinning wheel.
-
- - The '<' and '>' metacharacters have been modfied to allow you to jump
- from one word to the next (forward and backward). If no word is found
- on the current line, -1 is returned. The examples "prev Word",
- "next Word" and "current Word" macros in the file Demo.mcr are *not*
- updated!
-
- - "Show invisibles" has been added to the Options menu.
-
- - Under macro control the dirty flag is now always set correctly.
-
- - 'INSERT(<str-expr>)' was in fact 'INSERT(<str-expr>)!'. This has been
- changed. -> The 'replace tabs' macro now runs faster, because it doesn't
- have to update the screen all the time.
-
- - negative constants are now possible.
-
- - The use of \ and " in a string is now possible.
-
- - The buttons of the Search dialog box are now updated correctly if you
- cut, clear and paste in the edit fields.
-
- - Printing multiple copies and 'from/to page' now works correctly.
-
- - '-------' items in the Macros menu are now always disabled.
-
-
- IMPORTANT NOTE: Earlier I stated that the KeyCode DA should be installed
- within MEdit. Unfortunately the Font/DA Mover doesn't
- check the DRVR numbers of the DA's in the System
- file. That's why it is possible that it gives the "local"
- DA a DRVR number which is already used. The result are
- mixed up resources -> bombs. So don't install DA's directly
- in a programm unless you are shure the DRVR numbers are
- ok with any (!) system you use with this program.
-
-
-
- This is MEdit version 1.5. For all those who don't know MEdit, it is a user programmable text editor which you can configure for your specific editing
- tasks.
-
- The new version has many enhancements and bug fixes. Here are some of the most important changes:
-
- - Macros are compiled now. This allows much faster loading and reduces
- the size by about 80%. Syntax checking and error messages have been
- improved.
-
- - MEdit can now handle files of arbitrary size, as long as there is
- enough memory. It does so by splitting the file into sections which
- can be switched by buttons in the scroll bar.
-
- - There are some new macro commands: SUBSTR, WINDOW, STRCMP, LEN, and
- CONCAT. The macro syntax has been somewhat simplified.
-
- - Real tabs are supported now.
-
- - "Show invisibles" has been added.
-
- - ...
-
-
- Note: The manual has been revised in MacWrite for US Letter size paper. It was international paper. 9/16/86 D. Bak
-
-
- You are encouraged to upload the files to any bulletin board you like.
- I hope you will like the new version.
-
- Matthias Aebi
-